home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / x11 / rpg / crossfir.92 / crossfir / crossfire-0.92.5 / crossedit / include / util.h < prev    next >
C/C++ Source or Header  |  1996-07-24  |  1KB  |  39 lines

  1. /*
  2.  * Copyright (C) 1993 Petri Heinila
  3.  *
  4.  * This program is free software; you can redistribute it and/or modify
  5.  * it under the terms of the GNU General Public License as published by
  6.  * the Free Software Foundation; either version 2 of the License, or
  7.  * (at your option) any later version.
  8.  *
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  *
  18.  * Author can be connected by email from hevi@lut.fi
  19.  */
  20.  
  21. #ifndef _util_h
  22. #define _util_h
  23. #include <stdio.h>
  24.  
  25. #define die(STR) {fprintf(stderr,"Fatal: %s\n",STR);fflush(stderr);exit(1);}
  26. #define sdie(STR) {perror(STR);fflush(stderr);exit(1);}
  27. #define warn(STR) {fprintf(stderr,"Warning: %s\n",STR);fflush(stderr);}
  28.  
  29. #define LineSize    80+1
  30. #define BufSize     255+1
  31. #define BigBufSize  65535+1
  32. #define KiloBufSize (1<<10)+1
  33. #define MegaBufSize (1<<20)+1
  34. #define GigaBufSize (1<<30)+1
  35.  
  36. /* These should now be defined in global.h */
  37.  
  38. #endif /* _util_h */
  39.